home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / INPUT.PAK / INPUT.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  1.6 KB  |  66 lines

  1. #include "resource.h"
  2.  
  3. #if !defined (WORKSHOP_INVOKED)
  4. #include <windows.h>
  5. #endif
  6.  
  7. #include "globals.h"
  8. #include "version.h"
  9.  
  10. IDI_APPICON             ICON    DISCARDABLE     "INPUT.ICO"
  11.  
  12. INPUT MENU DISCARDABLE 
  13. BEGIN
  14.     POPUP "&File"
  15.     BEGIN
  16.         MENUITEM "E&xit",                       IDM_EXIT
  17.     END
  18. END
  19.  
  20. INPUT ACCELERATORS MOVEABLE PURE 
  21. BEGIN
  22.     "Q",            IDM_EXIT,               VIRTKEY, CONTROL
  23. END
  24.  
  25. VS_VERSION_INFO VERSIONINFO
  26.  FILEVERSION 4,0,0,0
  27.  PRODUCTVERSION 4,0,0,0
  28.  FILEFLAGSMASK 0x3fL
  29. #ifdef _DEBUG
  30.  FILEFLAGS 0xbL
  31. #else
  32.  FILEFLAGS 0xaL
  33. #endif
  34.  FILEOS 0x10001L
  35.  FILETYPE 0x1L
  36.  FILESUBTYPE 0x0L
  37. BEGIN
  38.     BLOCK "StringFileInfo"
  39.     BEGIN
  40.         BLOCK "040904e4"
  41.         BEGIN
  42.             VALUE "CompanyName", "Microsoft Corporation\0"
  43.             VALUE "FileDescription", "Input Example Application\0"
  44.             VALUE "FileVersion", "Version 4.0\0"
  45.             VALUE "InternalName", "Input\0"
  46.             VALUE "LegalCopyright", "Copyright \251 Microsoft Corp. 1990-1995\0"
  47.             VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  48.             VALUE "OriginalFilename", "\0"
  49.             VALUE "ProductName", "Input\0"
  50.             VALUE "ProductVersion", "\0"
  51.             VALUE "ProductVersion", "Version 4.0\0"
  52.         END
  53.     END
  54.     BLOCK "VarFileInfo"
  55.     BEGIN
  56.         VALUE "Translation", 0x409, 1252
  57.     END
  58. END
  59.  
  60. STRINGTABLE DISCARDABLE 
  61. BEGIN
  62.     IDS_APPNAME             "Input"
  63.     IDS_DESCRIPTION         "Input Example Application"
  64. END
  65.  
  66.